home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / diffs / gdb-4.12 / bfd / makefile.dos < prev    next >
Encoding:
Makefile  |  1994-08-05  |  25.9 KB  |  698 lines

  1. *** orig/gdb-4.12/bfd/makefile.dos    Mon Jul 25 22:58:16 1994
  2. --- src/gdb-4.12/bfd/makefile.dos    Mon Jul 25 23:00:42 1994
  3. ***************
  4. *** 0 ****
  5. --- 1,692 ----
  6. + #    Makefile template for Configure for the BFD library.
  7. + #    Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
  8. + #    Written by Cygnus Support.
  9. + # 
  10. + # This file is part of BFD, the Binary File Descriptor library.
  11. + # 
  12. + # This program is free software; you can redistribute it and/or modify
  13. + # it under the terms of the GNU General Public License as published by
  14. + # the Free Software Foundation; either version 2 of the License, or
  15. + # (at your option) any later version.
  16. + # 
  17. + # This program is distributed in the hope that it will be useful,
  18. + # but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. + # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. + # GNU General Public License for more details.
  21. + # 
  22. + # You should have received a copy of the GNU General Public License
  23. + # along with this program; if not, write to the Free Software
  24. + # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  25. + srcdir = .
  26. + prefix = /usr/local
  27. + exec_prefix = $(prefix)
  28. + bindir = $(exec_prefix)/bin
  29. + libdir = $(exec_prefix)/lib
  30. + datadir = $(prefix)/lib
  31. + mandir = $(prefix)/man
  32. + man1dir = $(mandir)/man1
  33. + man2dir = $(mandir)/man2
  34. + man3dir = $(mandir)/man3
  35. + man4dir = $(mandir)/man4
  36. + man5dir = $(mandir)/man5
  37. + man6dir = $(mandir)/man6
  38. + man7dir = $(mandir)/man7
  39. + man8dir = $(mandir)/man8
  40. + man9dir = $(mandir)/man9
  41. + infodir = $(prefix)/info
  42. + includedir = $(prefix)/include
  43. + oldincludedir =
  44. + docdir = doc
  45. + SHELL = /bin/sh
  46. + INSTALL = install -c
  47. + INSTALL_PROGRAM = $(INSTALL)
  48. + INSTALL_DATA = $(INSTALL)
  49. + AR = ar
  50. + AR_FLAGS = rc
  51. + CFLAGS = -g
  52. + BISON = bison
  53. + MAKEINFO = makeinfo
  54. + RANLIB = ranlib
  55. + CC_FOR_BUILD = $(CC)
  56. + INCDIR = $(srcdir)/../include
  57. + CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
  58. + DEP = mkdep
  59. + SUBDIRS = doc
  60. + TARGETLIB = libbfd.a
  61. + # bfd.h goes here, for now
  62. + BFD_H = bfd.h
  63. + # Some of these files should be in BFD*_BACKENDS below, but some programs
  64. + # won't link without them.  So, in order for some of the minimal-bfd
  65. + # hacks to work, they're also included here for now.
  66. + #    gdb: ecoff.o ecofflink.o elf.o
  67. + #    objdump: elf.o
  68. + #
  69. + # Also, Jim Kingdon notes:
  70. + # Writing S-records should be included in all (or at least most)
  71. + # *-*-coff, *-*-aout, etc., configurations, because people will want to
  72. + # be able to use objcopy to create S-records.  (S-records are not useful
  73. + # for the debugger, so if you are downloading things as S-records you
  74. + # need two copies of the executable, one to download and one for the
  75. + # debugger).
  76. + BFD_LIBS = \
  77. +     archive.o archures.o bfd.o cache.o coffgen.o core.o ctor.o \
  78. +     format.o init.o libbfd.o opncls.o reloc.o \
  79. +     section.o syms.o targets.o hash.o linker.o \
  80. +     ecoff.o ecofflink.o elf.o srec.o
  81. + # This list is alphabetized to make it easier to keep in sync
  82. + # with the decls and initializer in archures.c.
  83. + ALL_MACHINES = \
  84. +     cpu-a29k.o \
  85. +     cpu-alpha.o \
  86. +     cpu-h8300.o \
  87. +     cpu-h8500.o \
  88. +     cpu-hppa.o \
  89. +     cpu-i386.o \
  90. +     cpu-i960.o \
  91. +     cpu-m68k.o \
  92. +     cpu-m88k.o \
  93. +     cpu-mips.o \
  94. +     cpu-rs6000.o \
  95. +     cpu-sh.o \
  96. +     cpu-sparc.o \
  97. +     cpu-vax.o \
  98. +     cpu-we32k.o \
  99. +     cpu-z8k.o
  100. + # The .o files needed by all of the 32 bit vectors that are configured into
  101. + # target_vector in targets.c if configured with --with-targets=all.
  102. + BFD32_BACKENDS = \
  103. +     aout-adobe.o \
  104. +     aout32.o \
  105. +     bout.o \
  106. +     cf-i386lynx.o \
  107. +     cf-m68klynx.o \
  108. +     cf-sparclynx.o \
  109. +     coff-a29k.o \
  110. +     coff-apollo.o \
  111. +     coff-h8300.o \
  112. +     coff-h8500.o \
  113. +     coff-go32.o \
  114. +     coff-i386.o \
  115. +     coff-i960.o \
  116. +     coff-m68k.o \
  117. +     coff-m88k.o \
  118. +     coff-mips.o \
  119. +     coff-rs6000.o \
  120. +     coff-sh.o \
  121. +     coff-u68k.o \
  122. +     coff-we32k.o \
  123. +     coff-z8k.o \
  124. +     elf32-gen.o \
  125. +     elf32-hppa.o \
  126. +     elf32-i386.o \
  127. +     elf32-i860.o \
  128. +     elf32-m68k.o \
  129. +     elf32-m88k.o \
  130. +     elf32-mips.o \
  131. +     elf32-sparc.o \
  132. +     elf32.o \
  133. +     hp300hpux.o \
  134. +     som.o \
  135. +     i386aout.o \
  136. +     i386bsd.o \
  137. +     i386linux.o \
  138. +     i386lynx.o \
  139. +     netbsd386.o \
  140. +     i386mach3.o \
  141. +     ieee.o \
  142. +     m68klynx.o \
  143. +     mipsbsd.o \
  144. +     newsos3.o \
  145. +     nlm.o \
  146. +     nlm32-i386.o \
  147. +     nlm32-sparc.o \
  148. +     nlm32.o \
  149. +     oasys.o \
  150. +     reloc16.o \
  151. +     sparclynx.o \
  152. +     stab-syms.o \
  153. +     sunos.o
  154. + # The .o files needed by all of the 64 bit vectors that are configured into
  155. + # target_vector in targets.c if configured with --with-targets=all
  156. + # and --with-64-bit-bfd.
  157. + BFD64_BACKENDS = \
  158. +     aout64.o \
  159. +     coff-alpha.o \
  160. +     demo64.o \
  161. +     elf64-gen.o \
  162. +     elf64.o \
  163. +     nlm32-alpha.o \
  164. +     nlm64.o
  165. + OPTIONAL_BACKENDS = \
  166. +     aix386-core.o \
  167. +     hpux-core.o \
  168. +     irix-core.o \
  169. +     lynx-core.o \
  170. +     osf-core.o \
  171. +     trad-core.o
  172. + # These are defined by configure.in:
  173. + # WORDSIZE=32
  174. + # BFD_BACKENDS = $(BFD32_BACKENDS)
  175. + BFD_BACKENDS = coff-go32.o
  176. + BFD_MACHINES=cpu-i386.o
  177. + all:
  178. + #### host and target dependent Makefile fragments come in here.
  179. + TDEFAULTS = -DSELECT_ARCHITECTURES=bfd_i386_arch -DSELECT_VECS=&i386go32_vec
  180. + ###
  181. + FLAGS_TO_PASS = \
  182. +     "prefix=$(prefix)" \
  183. +     "exec_prefix=$(exec_prefix)" \
  184. +     "against=$(against)" \
  185. +     "AR=$(AR)" \
  186. +     "AR_FLAGS=$(AR_FLAGS)" \
  187. +     "CC=$(CC)" \
  188. +     "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
  189. +     "CFLAGS=$(CFLAGS)" \
  190. +     "RANLIB=$(RANLIB)" \
  191. +     "MAKEINFO=$(MAKEINFO)" \
  192. +     "INSTALL=$(INSTALL)" \
  193. +     "INSTALL_DATA=$(INSTALL_DATA)" \
  194. +     "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
  195. +     "BISON=$(BISON)"
  196. + ALL_CFLAGS=$(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES)
  197. + .c.o:
  198. +     $(CC) -c $(ALL_CFLAGS) $<
  199. + # C source files that correspond to .o's.
  200. + CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c \
  201. +      archures.c coff-go32.c aout64.c aout32.c sunos.c demo64.c \
  202. +      coff-i960.c srec.c tekhex.c oasys.c ieee.c \
  203. +      ecoff.c ecofflink.c coff-m68k.c coff-u68k.c coff-apollo.c \
  204. +      coff-a29k.c coff-rs6000.c coff-sparc.c coffgen.c format.c \
  205. +      section.c core.c syms.c stab-syms.c reloc.c init.c ctor.c \
  206. +      coff-m88k.c coff-mips.c coff-sh.c trad-core.c newsos3.c \
  207. +      i386aout.c i386linux.c netbsd386.c i386mach3.c bout.c aout-adobe.c coff-we32k.c \
  208. +      i386bsd.c cpu-h8300.c cpu-i960.c cpu-sparc.c cpu-m68k.c \
  209. +      cpu-m88k.c cpu-vax.c cpu-mips.c cpu-a29k.c cpu-i386.c \
  210. +      cpu-rs6000.c coff-h8300.c som.c cpu-hppa.c cpu-we32k.c reloc16.c \
  211. +      mipsbsd.c cpu-sh.c \
  212. +      elf.c elf32.c elf32-sparc.c elf32-i386.c elf32-i860.c elf32-m68k.c \
  213. +      elf32-hppa.c elf32-m88k.c elf32-mips.c elf32-gen.c \
  214. +      elf64.c elf64-gen.c \
  215. +      nlm.c nlm32.c nlm32-i386.c nlm32-sparc.c nlm32-alpha.c \
  216. +      nlm64.c coff-alpha.c cpu-alpha.c \
  217. +      hp300bsd.c hp300hpux.c \
  218. +      i386lynx.c cf-i386lynx.c m68klynx.c cf-m68klynx.c \
  219. +      sparclynx.c cf-sparclynx.c aix386-core.c hpux-core.c \
  220. +      irix-core.c lynx-core.c osf-core.c hash.c linker.c
  221. + HFILES = aout-target.h aoutf1.h aoutx.h coffcode.h \
  222. +      coffswap.h ecoffswap.h elf32-hppa.h elf32-target.h elf64-target.h \
  223. +      elfcode.h hppa_stubs.h libaout.h libbfd.h \
  224. +      libcoff.h libecoff.h libelf.h libhppa.h libieee.h libnlm.h \
  225. +      liboasys.h nlm-target.h nlmcode.h som.h genlink.h
  226. + STAGESTUFF = $(TARGETLIB) $(OFILES)
  227. + all: $(TARGETLIB) 
  228. + .NOEXPORT:
  229. + MAKEOVERRIDES=
  230. + .PHONY: check installcheck
  231. + check:
  232. +     @echo No testsuites exist. Nothing to check.
  233. + installcheck:
  234. +     @echo No testsuites exist. Nothing to check.
  235. + info dvi : force
  236. +     @$(MAKE) subdir_do DO=$@ "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
  237. + clean-info:
  238. +     @$(MAKE) subdir_do DO=clean-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
  239. +     
  240. + install-info: force
  241. +     @$(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
  242. + diststuff: info
  243. + # Various kinds of .o files to put in libbfd.a:
  244. + # BFD_LIBS    Generic routines, always needed.
  245. + # BFD_BACKENDS    Routines the configured targets need.
  246. + # BFD_MACHINES    Architecture-specific routines the configured targets need.
  247. + # HDEPFILES    Routines the host needs, regardless of target.
  248. + # TDEPFILES    Routines the target needs, regardless of host.
  249. + OFILES = $(BFD_LIBS) $(BFD_BACKENDS) $(BFD_MACHINES) $(HDEPFILES) $(TDEPFILES)
  250. + ofiles : Makefile
  251. +     rm -f ofiles
  252. +     f=""; \
  253. +     for i in $(OFILES) ; do \
  254. +       case " $$f " in \
  255. +         *" $$i "*) ;; \
  256. +         *) f="$$f $$i" ;; \
  257. +       esac ; \
  258. +     done ; \
  259. +     echo $$f > ofiles
  260. + $(TARGETLIB): $(OFILES)
  261. +     -rm -f $(TARGETLIB)
  262. +     $(AR) $(AR_FLAGS) $(TARGETLIB) $(OFILES)
  263. +     $(RANLIB) $(TARGETLIB)
  264. + # When compiling archures.c and targets.c, supply the default target
  265. + # info from configure.
  266. + targets.o: targets.c Makefile
  267. +     $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $(TDEFAULTS) $<
  268. + archures.o: archures.c Makefile
  269. +     $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $(TDEFAULTS) $<
  270. + subdir_do: force
  271. +     @for i in $(DODIRS); do \
  272. +         if [ -d ./$$i ] ; then \
  273. +             if (cd ./$$i; \
  274. +                 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
  275. +             else exit 1 ; fi ; \
  276. +         else true ; fi ; \
  277. +     done
  278. + tags etags: TAGS
  279. + TAGS: force
  280. +     etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
  281. + do_mostlyclean:
  282. +     rm -f *.o *~ core *.E *.p *.ip aout-params.h gen-aout
  283. + do_clean: do_mostlyclean
  284. +     rm -f libbfd.a TAGS bfd.h stmp-bfd.h ofiles
  285. + do_distclean: do_clean
  286. +     rm -f Makefile config.status sysdep.h
  287. + # Should we remove $(srcdir)/libcoff.h $(srcdir)/libbfd.h $(srcdir)/bfd-in2.h?
  288. + # make-stds.texi says it depends on whether they can be regenerated using
  289. + # this makefile.  Well, they can, but only via an explicit "make headers";
  290. + # the makefile does not regenerate them as needed.  So I guess we should not
  291. + # remove them in realclean.
  292. + do_realclean: do_distclean
  293. + mostlyclean: do_mostlyclean
  294. +     $(MAKE) subdir_do DO=mostlyclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
  295. + clean: do_clean
  296. +     $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
  297. + distclean:
  298. +     $(MAKE) subdir_do DO=distclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
  299. +     $(MAKE) do_distclean
  300. + clobber realclean:
  301. +     $(MAKE) subdir_do DO=realclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
  302. +     $(MAKE) do_realclean
  303. + # Mark everything as depending on config.status, since the timestamp on
  304. + # sysdep.h might actually move backwards if we reconfig and relink it
  305. + # to a different hosts/h-xxx.h file.  This will force a recompile anyway.
  306. + BFD_H_DEPS= $(INCDIR)/ansidecl.h $(INCDIR)/obstack.h
  307. + # RECONFIG = config.status
  308. + $(BFD_LIBS):  libbfd.h $(BFD_H) $(RECONFIG) $(BFD_H_DEPS)
  309. + $(BFD_MACHINES):  libbfd.h $(BFD_H) $(RECONFIG) $(BFD_H_DEPS)
  310. + $(BFD_BACKENDS):  libbfd.h $(BFD_H) $(RECONFIG) $(BFD_H_DEPS)
  311. + $(OPTIONAL_BACKENDS):  libbfd.h $(BFD_H) $(RECONFIG) $(BFD_H_DEPS)
  312. + # Get around a Sun Make bug in SunOS 4.1.1 with VPATH
  313. + cpu-i386.o:cpu-i386.c
  314. + cpu-z8k.o: cpu-z8k.c
  315. + cpu-h8500.o: cpu-h8500.c
  316. + cpu-we32k.o: cpu-we32k.c
  317. + saber:
  318. +     #suppress 65 on bfd_map_over_sections 
  319. +     #suppress 66 on bfd_map_over_sections 
  320. +     #suppress 67 on bfd_map_over_sections 
  321. +     #suppress 68 on bfd_map_over_sections 
  322. +     #suppress 69 on bfd_map_over_sections 
  323. +     #suppress 70 on bfd_map_over_sections 
  324. +     #suppress 110 in bfd_map_over_sections 
  325. +     #suppress 112 in bfd_map_over_sections 
  326. +     #suppress 530 
  327. +     #suppress 590 in swap_exec_header 
  328. +     #suppress 590 in _bfd_dummy_core_file_matches_executable_p 
  329. +     #suppress 590 in bfd_dont_truncate_arname
  330. +     #suppress 590 on ignore 
  331. +     #suppress 590 on abfd 
  332. +     #setopt load_flags $(CFLAGS)
  333. +     #load $(CFILES)
  334. + #-----------------------------------------------------------------------------
  335. + #        'STANDARD' GNU/960 TARGETS BELOW THIS POINT
  336. + #
  337. + # 'VERSION' file must be present and contain a string of the form "x.y"
  338. + #-----------------------------------------------------------------------------
  339. + ver960.c: FORCE
  340. +     rm -f ver960.c
  341. +     echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
  342. + # This target should be invoked before building a new release.
  343. + # 'VERSION' file must be present and contain a string of the form "x.y"
  344. + #
  345. + roll:
  346. +     @V=`cat VERSION`        ; \
  347. +     MAJ=`sed 's/\..*//' VERSION`    ; \
  348. +     MIN=`sed 's/.*\.//' VERSION`    ; \
  349. +     V=$$MAJ.`expr $$MIN + 1`    ; \
  350. +     rm -f VERSION            ; \
  351. +     echo $$V >VERSION        ; \
  352. +     echo Version $$V
  353. + # Dummy target to force execution of dependent targets.
  354. + #
  355. + force:
  356. + install:
  357. +     $(INSTALL_DATA) libbfd.a $(libdir)/libbfd.a
  358. +     $(RANLIB) $(libdir)/libbfd.a
  359. + # Install BFD include file, and others that it needs.  Install them
  360. + # both in GCC's include directory, and in the system include dir
  361. + # if configured as $(oldincludedir) -- which it usually isnt.
  362. +     $(INSTALL_DATA) $(BFD_H) $(includedir)/bfd.h
  363. +     $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(includedir)/ansidecl.h
  364. +     $(INSTALL_DATA) $(INCDIR)/obstack.h $(includedir)/obstack.h
  365. +     -if test -z "$(oldincludedir)"; then true; else \
  366. +     test -d $(oldincludedir) || mkdir $(oldincludedir); \
  367. +     $(INSTALL_DATA) $(BFD_H) $(oldincludedir)/bfd.h; \
  368. +     $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(oldincludedir)/ansidecl.h; \
  369. +     $(INSTALL_DATA) $(INCDIR)/obstack.h $(oldincludedir)/obstack.h; \
  370. +     $(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS); \
  371. +     fi
  372. + Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag)
  373. +     $(SHELL) config.status
  374. + # Have to get rid of .dep1 here so that "$?" later includes all of $(CFILES).
  375. + .dep: dep.sed $(CFILES) $(HFILES) bfd.h
  376. +     rm -f .dep1
  377. +     $(MAKE) DEP=$(DEP) .dep1
  378. +     sed -f dep.sed <.dep1 >.dep
  379. + # This rule really wants a mkdep that runs "gcc -MM".
  380. + .dep1: $(CFILES)
  381. +     rm -f .dep2
  382. +     echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep2
  383. +     $(DEP) -f .dep2 $(ALL_CFLAGS) $?
  384. +     $(srcdir)/../move-if-change .dep2 .dep1
  385. + dep.sed: dep-in.sed config.status
  386. +     sed <$(srcdir)/dep-in.sed >dep.sed    \
  387. +         -e 's!@BFD_H@!$(BFD_H)!'    \
  388. +         -e 's!@INCDIR@!$(INCDIR)!'    \
  389. +         -e 's!@srcdir@!$(srcdir)!'
  390. + dep: .dep
  391. +     sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
  392. +     cat .dep >> tmp-Makefile
  393. +     $(srcdir)/../move-if-change tmp-Makefile Makefile
  394. + dep-in: .dep
  395. +     sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
  396. +     cat .dep >> tmp-Makefile.in
  397. +     $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
  398. + host-aout.o: Makefile
  399. + # The following program can be used to generate a simple config file
  400. + # which can be folded into an h-XXX file for a new host, with some editing.
  401. + aout-params.h: gen-aout
  402. +     ./gen-aout > aout-params.h
  403. + gen-aout: $(srcdir)/gen-aout.c Makefile
  404. +     $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
  405. + BFDIN_H= $(srcdir)/bfd-in2.h
  406. + # $(BFD_H): stmp-bfd.h ; @true
  407. + # The file ../include/bfd.h is from earlier attempts to get this right.
  408. + # If the file is still there, kill it.
  409. + stmp-bfd.h : $(srcdir)/bfd-in2.h Makefile
  410. +     rm -f bfd.h-new 64 ../include/bfd.h
  411. +     -grep HOST_64_BIT sysdep.h > 64
  412. +     sed -e 's/@WORDSIZE@/$(WORDSIZE)/' -e '/64-bit.*sysdep.h/ r 64' < $(srcdir)/bfd-in2.h > bfd.h-new
  413. +     $(srcdir)/../move-if-change bfd.h-new $(BFD_H)
  414. +     rm -f 64
  415. +     touch stmp-bfd.h
  416. + # Could really use a "copy-if-change"...
  417. + headers:
  418. +     (cd $(docdir); $(MAKE) protos $(FLAGS_TO_PASS))
  419. +     cp $(docdir)/bfd.h bfd-in2.h-new
  420. +     $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
  421. +     cp $(docdir)/libbfd.h libbfd.h-new
  422. +     $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
  423. +     cp $(docdir)/libcoff.h libcoff.h-new
  424. +     $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
  425. + bfd.info:
  426. +     (cd $(docdir); $(MAKE) bfd.info $(FLAGS_TO_PASS))
  427. + bfd.dvi:
  428. +     (cd $(docdir); $(MAKE) bfd.dvi $(FLAGS_TO_PASS))
  429. + bfd.ps: 
  430. +     (cd $(docdir); $(MAKE) bfd.ps $(FLAGS_TO_PASS))
  431. + # What appears below is generated by a hacked mkdep using gcc -MM.
  432. + # DO NOT DELETE THIS LINE -- mkdep uses it.
  433. + # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
  434. + libbfd.o : libbfd.c
  435. + opncls.o : opncls.c
  436. + bfd.o : bfd.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \
  437. +   $(INCDIR)/coff/sym.h libcoff.h libecoff.h $(INCDIR)/coff/ecoff.h \
  438. +   libelf.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
  439. +   $(INCDIR)/elf/external.h
  440. + archive.o : archive.c $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h
  441. + targets.o : targets.c
  442. + cache.o : cache.c
  443. + archures.o : archures.c
  444. + coff-i386.o : coff-i386.c $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h \
  445. +   libcoff.h coffcode.h coffswap.h
  446. + aout64.o : aout64.c aoutx.h $(INCDIR)/bfdlink.h libaout.h \
  447. +   $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
  448. +   $(INCDIR)/aout/ar.h
  449. + aout32.o : aout32.c aoutx.h $(INCDIR)/bfdlink.h libaout.h \
  450. +   $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
  451. +   $(INCDIR)/aout/ar.h
  452. + sunos.o : sunos.c aoutf1.h $(INCDIR)/aout/sun4.h libaout.h \
  453. +   $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
  454. +   $(INCDIR)/aout/ar.h aout-target.h
  455. + demo64.o : demo64.c aoutf1.h $(INCDIR)/aout/sun4.h \
  456. +   libaout.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
  457. +   $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h
  458. + coff-i960.o : coff-i960.c $(INCDIR)/coff/i960.h $(INCDIR)/coff/internal.h \
  459. +   libcoff.h coffcode.h coffswap.h
  460. + srec.o : srec.c
  461. + tekhex.o : tekhex.c
  462. + oasys.o : oasys.c $(INCDIR)/oasys.h liboasys.h
  463. + ieee.o : ieee.c $(INCDIR)/ieee.h libieee.h
  464. + ecoff.o : ecoff.c $(INCDIR)/bfdlink.h $(INCDIR)/aout/ar.h \
  465. +   $(INCDIR)/aout/ranlib.h libaout.h $(INCDIR)/aout/aout64.h \
  466. +   $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \
  467. +   $(INCDIR)/coff/ecoff.h libcoff.h libecoff.h
  468. + ecofflink.o : ecofflink.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \
  469. +   $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h
  470. + coff-m68k.o : coff-m68k.c $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h \
  471. +   libcoff.h coffcode.h coffswap.h
  472. + coff-u68k.o : coff-u68k.c coff-m68k.c $(INCDIR)/coff/m68k.h \
  473. +   $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
  474. + coff-apollo.o : coff-apollo.c $(INCDIR)/coff/apollo.h \
  475. +   $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
  476. + coff-a29k.o : coff-a29k.c $(INCDIR)/coff/a29k.h $(INCDIR)/coff/internal.h \
  477. +   libcoff.h coffcode.h coffswap.h
  478. + coff-rs6000.o : coff-rs6000.c $(INCDIR)/coff/internal.h \
  479. +   $(INCDIR)/coff/rs6000.h libcoff.h coffcode.h coffswap.h
  480. + coff-sparc.o : coff-sparc.c $(INCDIR)/coff/sparc.h \
  481. +   $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
  482. + coffgen.o : coffgen.c $(INCDIR)/coff/internal.h libcoff.h
  483. + format.o : format.c
  484. + section.o : section.c
  485. + core.o : core.c
  486. + syms.o : syms.c $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
  487. + stab-syms.o : stab-syms.c libaout.h $(INCDIR)/aout/aout64.h \
  488. +   $(INCDIR)/aout/stab.def
  489. + reloc.o : reloc.c $(INCDIR)/bfdlink.h
  490. + init.o : init.c
  491. + ctor.o : ctor.c
  492. + coff-m88k.o : coff-m88k.c $(INCDIR)/coff/m88k.h $(INCDIR)/coff/internal.h \
  493. +   libcoff.h coffcode.h coffswap.h
  494. + coff-mips.o : coff-mips.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \
  495. +   $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h \
  496. +   $(INCDIR)/coff/mips.h libcoff.h libecoff.h coffswap.h \
  497. +   ecoffswap.h
  498. + coff-sh.o : coff-sh.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/sh.h \
  499. +   $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
  500. + trad-core.o : trad-core.c libaout.h
  501. + newsos3.o : newsos3.c $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
  502. +   $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h libaout.h \
  503. +   aout-target.h
  504. + i386aout.o : i386aout.c libaout.h aout-target.h $(INCDIR)/aout/aout64.h \
  505. +   $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
  506. + i386linux.o : i386linux.c $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
  507. +   $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h libaout.h \
  508. +   aout-target.h
  509. + netbsd386.o : netbsd386.c libaout.h aout-target.h $(INCDIR)/aout/aout64.h \
  510. +   $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
  511. + i386mach3.o : i386mach3.c $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
  512. +   $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h libaout.h \
  513. +   aout-target.h
  514. + bout.o : bout.c $(INCDIR)/bfdlink.h $(INCDIR)/bout.h \
  515. +   $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h
  516. + aout-adobe.o : aout-adobe.c $(INCDIR)/aout/adobe.h \
  517. +   $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h
  518. + coff-we32k.o : coff-we32k.c $(INCDIR)/coff/we32k.h \
  519. +   $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
  520. + i386bsd.o : i386bsd.c libaout.h aout-target.h $(INCDIR)/aout/aout64.h \
  521. +   $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
  522. + cpu-h8300.o : cpu-h8300.c
  523. + cpu-i960.o : cpu-i960.c
  524. + cpu-sparc.o : cpu-sparc.c
  525. + cpu-m68k.o : cpu-m68k.c
  526. + cpu-m88k.o : cpu-m88k.c
  527. + cpu-vax.o : cpu-vax.c
  528. + cpu-mips.o : cpu-mips.c
  529. + cpu-a29k.o : cpu-a29k.c
  530. + cpu-i386.o : cpu-i386.c
  531. + cpu-rs6000.o : cpu-rs6000.c
  532. + coff-h8300.o : coff-h8300.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/h8300.h \
  533. +   $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
  534. + som.o : som.c
  535. + cpu-hppa.o : cpu-hppa.c
  536. + cpu-we32k.o : cpu-we32k.c
  537. + reloc16.o : reloc16.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \
  538. +   libcoff.h
  539. + mipsbsd.o : mipsbsd.c libaout.h aout-target.h $(INCDIR)/aout/aout64.h \
  540. +   $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
  541. + cpu-sh.o : cpu-sh.c
  542. + elf.o : elf.c libelf.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
  543. +   $(INCDIR)/elf/external.h
  544. + elf32.o : elf32.c elfcode.h libelf.h $(INCDIR)/elf/common.h \
  545. +   $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h
  546. + elf32-sparc.o : elf32-sparc.c libelf.h $(INCDIR)/elf/common.h \
  547. +   $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elf32-target.h
  548. + elf32-i386.o : elf32-i386.c libelf.h $(INCDIR)/elf/common.h \
  549. +   $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elf32-target.h
  550. + elf32-i860.o : elf32-i860.c libelf.h $(INCDIR)/elf/common.h \
  551. +   $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elf32-target.h
  552. + elf32-m68k.o : elf32-m68k.c libelf.h $(INCDIR)/elf/common.h \
  553. +   $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elf32-target.h
  554. + elf32-hppa.o : elf32-hppa.c $(INCDIR)/bfdlink.h libelf.h \
  555. +   $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
  556. +   elf32-hppa.h libhppa.h $(INCDIR)/aout/aout64.h hppa_stubs.h \
  557. +   elf32-target.h
  558. + elf32-m88k.o : elf32-m88k.c libelf.h $(INCDIR)/elf/common.h \
  559. +   $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elf32-target.h
  560. + elf32-mips.o : elf32-mips.c $(INCDIR)/bfdlink.h genlink.h \
  561. +   libelf.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
  562. +   $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h $(INCDIR)/coff/sym.h \
  563. +   $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \
  564. +   $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h ecoffswap.h \
  565. +   elf32-target.h
  566. + elf32-gen.o : elf32-gen.c libelf.h $(INCDIR)/elf/common.h \
  567. +   $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elf32-target.h
  568. + elf64.o : elf64.c elfcode.h libelf.h $(INCDIR)/elf/common.h \
  569. +   $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h
  570. + elf64-gen.o : elf64-gen.c libelf.h $(INCDIR)/elf/common.h \
  571. +   $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elf64-target.h
  572. + nlm.o : nlm.c libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
  573. +   $(INCDIR)/nlm/external.h
  574. + nlm32.o : nlm32.c nlmcode.h libnlm.h $(INCDIR)/nlm/common.h \
  575. +   $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h
  576. + nlm32-i386.o : nlm32-i386.c $(INCDIR)/nlm/i386-ext.h \
  577. +   libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
  578. +   $(INCDIR)/nlm/external.h nlmswap.h nlm-target.h
  579. + nlm32-sparc.o : nlm32-sparc.c $(INCDIR)/nlm/sparc32-ext.h \
  580. +   libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
  581. +   $(INCDIR)/nlm/external.h nlmswap.h nlm-target.h
  582. + nlm32-alpha.o : nlm32-alpha.c $(INCDIR)/nlm/alpha-ext.h \
  583. +   libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
  584. +   $(INCDIR)/nlm/external.h nlmswap.h nlm-target.h
  585. + nlm64.o : nlm64.c nlmcode.h libnlm.h $(INCDIR)/nlm/common.h \
  586. +   $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h
  587. + coff-alpha.o : coff-alpha.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \
  588. +   $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h \
  589. +   $(INCDIR)/coff/alpha.h libcoff.h libecoff.h coffswap.h \
  590. +   ecoffswap.h
  591. + cpu-alpha.o : cpu-alpha.c
  592. + hp300bsd.o : hp300bsd.c libaout.h aout-target.h $(INCDIR)/aout/aout64.h \
  593. +   $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
  594. + hp300hpux.o : hp300hpux.c $(INCDIR)/aout/hp300hpux.h \
  595. +   aoutx.h $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/aout/aout64.h \
  596. +   $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
  597. +   aout-target.h
  598. + i386lynx.o : i386lynx.c libaout.h $(INCDIR)/aout/aout64.h \
  599. +   aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
  600. +   $(INCDIR)/aout/ar.h
  601. + cf-i386lynx.o : cf-i386lynx.c coff-i386.c $(INCDIR)/coff/i386.h \
  602. +   $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
  603. + m68klynx.o : m68klynx.c libaout.h $(INCDIR)/aout/aout64.h \
  604. +   aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
  605. +   $(INCDIR)/aout/ar.h
  606. + cf-m68klynx.o : cf-m68klynx.c coff-m68k.c $(INCDIR)/coff/m68k.h \
  607. +   $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
  608. + sparclynx.o : sparclynx.c $(INCDIR)/aout/sun4.h libaout.h \
  609. +   $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
  610. +   $(INCDIR)/aout/ar.h aout-target.h
  611. + cf-sparclynx.o : cf-sparclynx.c coff-sparc.c $(INCDIR)/coff/sparc.h \
  612. +   $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
  613. + aix386-core.o : aix386-core.c $(INCDIR)/coff/i386.h \
  614. +   $(INCDIR)/coff/internal.h libcoff.h
  615. + hpux-core.o : hpux-core.c
  616. + irix-core.o : irix-core.c
  617. + lynx-core.o : lynx-core.c
  618. + osf-core.o : osf-core.c
  619. + hash.o : hash.c
  620. + linker.o : linker.c $(INCDIR)/bfdlink.h genlink.h
  621. + # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
  622.